home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 2010 April
/
PCWorld0410.iso
/
pluginy Firefox
/
10586
/
10586.xpi
/
chrome
/
content
/
options.js
< prev
next >
Wrap
Text File
|
2009-02-11
|
469b
|
17 lines
// JavaScript Document
//Attach unload event to options window
window.addEventListener("beforeunload", function(){
//Get reference to navigator window
var win = Components.classes["@mozilla.org/appshell/window-mediator;1"]
.getService(Components.interfaces.nsIWindowMediator)
.getMostRecentWindow("navigator:browser");
//If window exists
if(win){
//Update elements based on settings
win.tinyurlgen.applysettings();
}
}, true);